@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* -------------------------------------------------------------------- */
/* ---------------------------image d'entete--------------------------- */
/* -------------------------------------------------------------------- */
.imgresponsive{
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
/* --------------------------------------------------------------------- */
/* ---------------------------fin image d'entete------------------------ */
/* --------------------------------------------------------------------- */
  

/* --------------------------------------------------------------------- */
/* ---------------------------LOGO COMITE------------------------------- */
/* --------------------------------------------------------------------- */

.logo{
  padding-left: 5px;
  padding-bottom: 1px;
}
/* --------------------------------------------------------------------- */
/* ---------------------------fin LOGO COMITE--------------------------- */
/* --------------------------------------------------------------------- */

/* --------------------------------------------------------------------- */
/* ---------------------------Menu Navigation--------------------------- */
/* --------------------------------------------------------------------- */

nav .wrapper {
  position: relative;
  max-width: 2000px;
  padding: 0px 5px;
  height: 100px;
  line-height: 40px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
   position: fixed;
  z-index: 99;
  width: 100%;
  background: #d3e605;
}

.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #5e1701;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.nav-links li a:hover {
  background: #adcdec;
}

.nav-links .mobile-item {
  display: none;
}

/* --------------------------------------------------------------------- */
/* ---------------------------Menu déroulant---------------------------- */
/* --------------------------------------------------------------------- */
.nav-links .drop-menu {
  position: absolute;
  background: #f5f1f1;
  width: 285px;
  line-height: 40px;
  top: 60px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0,1s ease;
  top: 60px;
  opacity: 1;
  visibility: visible;
}


.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
/* --------------------------------------------------------------------- */
/* ---------------------------fin Menu Navigation----------------------- */
/* --------------------------------------------------------------------- */

/* --------------------------------------------------------------------- */
/* ---------------------------Menu MEGA--------------------------------- */
/* --------------------------------------------------------------------- */
.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 60px;
  opacity: 0;
  visibility: hidden;
}
.mega-box p{
  color: #4af605;
  font-size: larger;
}
.mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 35px;
}

.content .row img {
  width: 95%;
  height: 95%;
  object-fit: cover;
}

.content .row header {
  color: #e0f806;
  font-size: 20px;
  font-weight: 300;      
  text-decoration: underline;
}

.content .row .mega-links {
  margin-left: -40px;
  
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 15px;
  display:block;
  
}

.row .mega-links li a:hover {
  color: #f2f2f2;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  right: 100px;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 20px;
}

/* --------------------------------------------------------------------- */
/* ---------------------------Fin Menu MEGA----------------------------- */
/* --------------------------------------------------------------------- */


/* --------------------------------------------------------------------- */
/* ---------------------------Menu RESPONSIVE--------------------------- */
/* --------------------------------------------------------------------- */

@media screen and (max-width: 1474px) {
  .wrapper .btn {
    display: block;
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    top: 0;
    left: -100%;
    background: #d3e605;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
  }

    .row .mega-links UL P  {
    font-size: 18px;
  }
    .row .mega-links li a  {
    font-size: 14px;
  }
  .logo{
  padding-top: 5px;
  }

  .NoVisibleGSM{
    display:none;
    }
 




  /* --------------------------------------------------------------------- */
  /* ---------------------------Fin Menu RESPONSIVE----------------------- */
  /* --------------------------------------------------------------------- */

 

   /* --------------------------------------------------------------------- */
  /* -----------------------bouton hamburger------------------------------ */
  /* --------------------------------------------------------------------- */

  #menu-btn:checked~.nav-links {
    left: 0%;
    color: #5e1701;
  }

  

  #menu-btn:checked~.btn.menu-btn {
    display: none;
  }

  #close-btn:checked~.btn.menu-btn {
    display: block;
  }
  .btn.close-btn{
    color: #5e1701;
    background-color:rgb(255, 55, 0);
    border-color: brown;
    border-width: 5px;
    border-radius: 20PX;
  }
  .btn.menu-btn{
    color: #5e1701;
    background-color: rgb(9, 244, 37);
    border-color: brown;
    border-width: 5px;
    border-radius: 20PX;
  }

  /* --------------------------------------------------------------------- */
  /* -----------------------fin bouton hamburger-------------------------- */
  /* --------------------------------------------------------------------- */
  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  /* --------------------------------------------------------------------- */
  /* -----------------------menu déroulant-------------------------------- */
  /* --------------------------------------------------------------------- */
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    
  }

  #showDropActus:checked~.drop-menu,/* -----deroulant actualité-------- */ 
  #showDropLicencié:checked~.drop-menu,/* -----deroulant licencié------ */
  #showDropTable:checked~.drop-menu,/* -----deroulant table------ */
  #showDropTournois1:checked~.drop-menu,/* -----deroulant tounois admin------ */
  #showDropOrganisation:checked~.drop-menu,/* -----deroulant Organisation------ */
  #showDropOTarif:checked~.drop-menu,/* -----deroulant Tarif------ */
  #showDocumentation:checked~.drop-menu,/* -----deroulant documentation------ */
  #showDropFooter:checked~.drop-menu,/* -----deroulant footer------ */
  #showMegaTournois:checked~.mega-box, /* -----mega tournois----------- */                
  #showMegaTarot:checked~.mega-box /* -----mega tarot en lorraine------ */  
 {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: #5e1701;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    
  }

  .nav-links .mobile-item {
    display: block;
    color: #5e1701;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    
  }

  .nav-links .mobile-item:hover {
    background: #f2f2f2;
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-links li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }
}

nav input {
  display: none;
}


  

  /* --------------------------------------------------------------------- */
  /* ---------------------------MAIN-------------------------------------- */
  /* --------------------------------------------------------------------- */
.corps{
  padding-top: 150px;
  background-color: rgb(249, 251, 251);
  text-align: center;
}


/* ----------------------------------------------------------------------- */
  /* -----------------------FIN du MAIN----------------------------------- */
  /* --------------------------------------------------------------------- */

  /* --------------------------------------------------------------------- */
  /* -------------------------footer-------------------------------------- */
  /* --------------------------------------------------------------------- */

  .footer-dark {
  padding:50px 0;
  color:#f0f9ff;
  background-color:#282d32;
}

.footer-dark h4 {
  margin-top:0;
  margin-bottom:12px;
  font-weight:bold;
  font-size:14px;
  color: #5e1701;
  text-decoration: underline;
}

.footer-dark h5 {
  font-size:14px;
  color: rgb(9, 244, 37);
 }

.footer-dark ul {
  padding:0;
  list-style:none;
  line-height:1.6;
  font-size:14px;
  margin-bottom:0;
}

.footer-dark ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.6;
}

.footer-dark ul a:hover {
  opacity:0.8;
}

@media (max-width:767px) {
  .footer-dark .item:not(.social) {
    text-align:center;
    padding-bottom:20px;
  }
}

.footer-dark .item.text {
  margin-bottom:36px;
}

@media (max-width:767px) {
  .footer-dark .item.text {
    margin-bottom:0;
  }
}

.footer-dark .item.text p {
  opacity:0.6;
  margin-bottom:0;
}

.footer-dark .item.social {
  text-align:center;
}

@media (max-width:991px) {
  .footer-dark .item.social {
    text-align:center;
    margin-top:20px;
  }
}

.footer-dark .item.social > a {
  font-size:20px;
  width:36px;
  height:36px;
  line-height:36px;
  display:inline-block;
  text-align:center;
  border-radius:50%;
  box-shadow:0 0 0 1px rgba(255,255,255,0.4);
  margin:0 8px;
  color:#fff;
  opacity:0.75;
}

.footer-dark .item.social > a:hover {
  opacity:0.9;
}

.footer-dark .copyright {
  text-align:center;
  padding-top:24px;
  opacity:0.3;
  font-size:13px;
  margin-bottom:0;
}
.CouleurNeuromorphisme{
  border-radius: 50px;
  background: #d6caf7;
  box-shadow: inset 20px 20px 60px #948baa,
            inset -20px -20px 60px #ffffff;
}


  /* --------------------------------------------------------------------- */
  /* -----------------------fin du footer--------------------------------- */
  /* --------------------------------------------------------------------- */

  /* --------------------------------------------------------------------- */
  /* -----------------------datatable------------------------------------- */
  /* --------------------------------------------------------------------- */

 .hiddenColTableau{
display: none;
 }

  /* -------------------------------------------------------------------- */
  /* -----------------------FIN datatable-------------------------------- */
  /* -------------------------------------------------------------------- */

  /* -------------------------------------------------------------------- */
  /* -----------------------MES BOUTONS---------------------------------- */
  /* -------------------------------------------------------------------- */

.MesBtn{

  border-color: #242526;
  border-width: 2px;
  border-radius: 20px;


}


  /* -------------------------------------------------------------------- */
  /* -----------------------fin MES BOUTONS------------------------------ */
  /* -------------------------------------------------------------------- */

  @media screen and (MAX-width: 360px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 360px;
  
}
}
 @media screen and (width: 375px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 375px;
  
}
}
@media screen and (max-width: 393px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 393px;
  
}
}
@media screen and (max-width: 402px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 402px;
  
}
}
@media screen and (width: 412px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 412px;
  
}
}
@media screen and (width: 414px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 414px;
  
}
}
@media screen and (width: 420px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 420px;
  
}
}
@media screen and (width: 428px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 428px;
  
}
}
@media screen and (width: 430px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 430px;
  
}
}
@media screen and (width: 440px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 440px;
  
}
}
@media screen and (width: 712px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 712px;
  
}
}

@media screen and (width: 744px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 744px;
  
}
}
@media screen and (width: 768px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 768px;
  
}
}

@media screen and (width: 800px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 800px;
  
}
}
@media screen and (width: 810px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 810px;
  
}
}
@media screen and (width: 820px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 820px;
  
}
}
@media screen and (width: 834px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 834px;
  
}
}
@media screen and (MIN-width: 835px) {
  .Media360 {
    visibility: hidden;
  }
  nav .wrapper {
 
  max-width: 2000px;
  
}
}
.alignlabel{
  text-align: right;
}

  /* -------------------------------------------------------------------- */
  /* -----------------------Formulaire------------------------------ */
  /* -------------------------------------------------------------------- */


  label{
    margin-left: 20px;
    background-color: #c1f5cd;
    text-align: right;
    color: #5e1701;
    font-weight: 300;
    border-style:inherit;
  }
   /* -------------------------------------------------------------------- */
  /* -----------------------DATATABLES------------------------------ */
  /* -------------------------------------------------------------------- */

 #Tab {
 width: 100%;
 
 }

.tabcenter{
   margin-left:auto;
   margin-right:auto;
}

.dt-buttons .dt-button{
  margin-right: 12px;
  background-color: #c1f5cd;
  color: #f30c0c;
  font-weight: 500;
  border-radius: 20px;
}
.dt-buttons .dt-button:last-child{
  margin-right: 0;
}
#tab thead th {
  font-weight: bold !important;
  background-color: #e6e205;
}
#tab tfoot th {
  font-weight: bold !important;
}

/* 1. On vire les icônes par défaut de DataTables */
table.dataTable thead .dt-column-order::before,
table.dataTable thead .dt-column-order::after {
  content: none !important;
  background-image: none !important;
}
/* 2. État normal = rouge, taille normale */
table.dataTable thead .dt-column-order::before {
  content: "⇅" !important;
  color: #ff0000 !important;
  font-size: 16px !important;
  opacity: 1 !important;
  display: inline-block;
}
/* 3. Tri ascendant = bleu ↑ agrandie */
table.dataTable thead .dt-ordering-asc .dt-column-order::before {
  content: "↑" !important;
  color: #007bff !important;
  font-size: 16px !important;
  display: inline-block !important;
  transform: scale(1.4) !important;
  transform-origin: center !important;
}
/* 4. Tri descendant = bleu ↓ agrandie */
table.dataTable thead .dt-ordering-desc .dt-column-order::before {
  content: "↓" !important;
  color: #007bff !important;
  font-size: 16px !important;
  display: inline-block !important;
  transform: scale(1.4) !important;
  transform-origin: center !important;
}


/* barre de pagination*/
.dataTables_paginate {
  background: #f59e9e; /* couleur de fond */
  padding: 10px;
  border-radius: 5px;
}
/* Les boutons de pagination */
.dataTables_paginate .paginate_button {
  color: #efef08 !important; /* couleur du texte */
  font-size: 20px; /* taille du texte */
  margin: 0 5px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
}
/* Bouton actif (page courante) */
.dataTables_paginate .paginate_button.current {
  background: #007bff;
  color: #fff !important;
  border-color: #007bff;
}
/* Survol des boutons */
.dataTables_paginate .paginate_button:hover {
  background: #ddd;
  color: #000 !important;
}